草庐IT

flutter - textDirection != null assert is not null ListTile

全部标签

flutter - 在 bloc 模式上打开抽屉

几天后解决这个问题,我不能我在我的应用程序上实现了简单的blok模式,我想通过按FloatingActionButton或Icons.menu图标打开Drawer,但是我的代码为Scaffold.of(context).openDrawer();不工作我的代码:returnScaffold(body:BlocBuilder(bloc:_homeBloc,builder:(BuildContextcontext,HomeStatestate){Scaffold.of(context).openDrawer();//HomeEvent类:classHomeEventextendsEquat

flutter - 在 bloc 模式上打开抽屉

几天后解决这个问题,我不能我在我的应用程序上实现了简单的blok模式,我想通过按FloatingActionButton或Icons.menu图标打开Drawer,但是我的代码为Scaffold.of(context).openDrawer();不工作我的代码:returnScaffold(body:BlocBuilder(bloc:_homeBloc,builder:(BuildContextcontext,HomeStatestate){Scaffold.of(context).openDrawer();//HomeEvent类:classHomeEventextendsEquat

dart - 如何在将 flutter 应用程序迁移到 flutter web 时显示图像 Assets ?

尝试将shrine应用程序迁移到flutterweb但迁移时无法在localhost显示图像(shrineLogo放置在assets文件夹中),包含图像的asserts文件夹放置在web文件夹中在FlutterWebmigrationguide中进行了解释,并使用正确的路径更新了dart代码,但它仍然不显示图像。请提供解决方案谢谢!登录.dartimport'package:flutter_web/material.dart';classLoginPageextendsStatefulWidget{@override_LoginPageStatecreateState()=>_Logi

dart - 如何在将 flutter 应用程序迁移到 flutter web 时显示图像 Assets ?

尝试将shrine应用程序迁移到flutterweb但迁移时无法在localhost显示图像(shrineLogo放置在assets文件夹中),包含图像的asserts文件夹放置在web文件夹中在FlutterWebmigrationguide中进行了解释,并使用正确的路径更新了dart代码,但它仍然不显示图像。请提供解决方案谢谢!登录.dartimport'package:flutter_web/material.dart';classLoginPageextendsStatefulWidget{@override_LoginPageStatecreateState()=>_Logi

flutter - 如何在 flutter 中将 sharedpreference 与迷你图一起使用?

你好,我试图用迷你图制作一个动态图表,但我不能使用来自sharedpreference的双变量...当我使用双变量时我有一个错误:在初始化程序中只能访问静态成员。但我搜索绘制动态图表而不是静态图表。谢谢例子:load_my_variable_double()async{SharedPreferencesprefs=awaitSharedPreferences.getInstance();setState((){my_variable_double=(prefs.getDouble('my_variable_double'))??0;});}vardata=[my_variable_do

flutter - 如何在 flutter 中将 sharedpreference 与迷你图一起使用?

你好,我试图用迷你图制作一个动态图表,但我不能使用来自sharedpreference的双变量...当我使用双变量时我有一个错误:在初始化程序中只能访问静态成员。但我搜索绘制动态图表而不是静态图表。谢谢例子:load_my_variable_double()async{SharedPreferencesprefs=awaitSharedPreferences.getInstance();setState((){my_variable_double=(prefs.getDouble('my_variable_double'))??0;});}vardata=[my_variable_do

list - 如何在 flutter 中渲染列表中的列表?

我正在创建一个flutter应用程序,它应该显示团队列表,每个团队都是一个包含如下项目的对象name:字符串players:数组name:字符串看起来像这样Listteams=[{'name':'Teamone','players':[{'name':'Teamoneplayerone',},{'name':'Teamoneplayertwo',},{'name':'Teamoneplayerthree',},]},{'name':'Teamtwo','players':[{'name':'Teamtwoplayerone',},{'name':'Teamtwoplayerone',}

list - 如何在 flutter 中渲染列表中的列表?

我正在创建一个flutter应用程序,它应该显示团队列表,每个团队都是一个包含如下项目的对象name:字符串players:数组name:字符串看起来像这样Listteams=[{'name':'Teamone','players':[{'name':'Teamoneplayerone',},{'name':'Teamoneplayertwo',},{'name':'Teamoneplayerthree',},]},{'name':'Teamtwo','players':[{'name':'Teamtwoplayerone',},{'name':'Teamtwoplayerone',}

flutter - 如何在一列内实现多个水平列表

我想实现多个水平列表,其中包含带有一些细节的卡片,现在我得到的只是白屏(没有错误)这是我的代码:Scaffold(body:Column(children:[Expanded(child:ListView.builder(scrollDirection:Axis.horizontal,itemCount:50,itemBuilder:(BuildContextcontext,intindex){Card(child:Column(children:[Text('fsfssffs'),],),);},),),SizedBox(height:20.0,),Expanded(child:Li

flutter - 如何在一列内实现多个水平列表

我想实现多个水平列表,其中包含带有一些细节的卡片,现在我得到的只是白屏(没有错误)这是我的代码:Scaffold(body:Column(children:[Expanded(child:ListView.builder(scrollDirection:Axis.horizontal,itemCount:50,itemBuilder:(BuildContextcontext,intindex){Card(child:Column(children:[Text('fsfssffs'),],),);},),),SizedBox(height:20.0,),Expanded(child:Li